home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc™ Source Code / Layout / Border.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  928 b   |  37 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Border.h
  3.  
  4.     Contains:    Definitions of active border display routines
  5.  
  6.     Owned by:    Joshua Susser
  7.  
  8.     Copyright:    © 1994 - 1995 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.     
  12.          <1>     2/28/95    JBS        first checked in
  13.          <0>     6/30/94    JBS        1198509 created
  14. */
  15.  
  16. #ifndef _BORDER_
  17. #define _BORDER_
  18.  
  19. //==============================================================================
  20. // Classes used by this interface
  21. //==============================================================================
  22.  
  23. class Environment;
  24. class ODFacet;
  25. class ODShape;
  26.  
  27. //==============================================================================
  28. // Functions
  29. //==============================================================================
  30.  
  31. void
  32. ODDrawBorder(Environment *ev, ODShape* borderShape, ODFacet* facet);
  33.  
  34. void
  35. ODInvalidateBorder(Environment *ev, ODShape* borderShape, ODFacet* facet);
  36.  
  37. #endif // _BORDER_